home *** CD-ROM | disk | FTP | other *** search
- program cciwcc05;
-
- uses
- Forms,
- Cciccfrm in 'CCICCFRM.PAS' {CCINetCCForm},
- Cciccinf in 'CCICCINF.PAS' {CCICInfoDlg},
- Cciccprf in 'CCICCPRF.PAS' {CCICPrefsDlg};
-
- {$R *.RES}
-
- begin
- Application.Title := 'CC InterNet Web Command Center';
- Application.CreateForm(TCCINetCCForm, CCINetCCForm);
- Application.CreateForm(TCCICInfoDlg, CCICInfoDlg);
- Application.CreateForm(TCCICPrefsDlg, CCICPrefsDlg);
- Application.Run;
- end.
-